home *** CD-ROM | disk | FTP | other *** search
- # INSTALLATION
- # 1. rename 'netrc' to '.netrc', put it in your home dir and
- # perform 'chmod 600 .netrc'
- # 2. Change the string after the 'password' keyword to your
- # email address.
- # 3. Change 'litamiga.epfl.ch' to your favourite aminet site.
- # Duplicate everything below if you frequent other sites.
- # 4. If you want to log in as 'uploader', start 'ftp -n' and
- # log in using the 'user' command.
- #
- # USAGE
- # 1. When you 'ftp litamiga.epfl.ch', you're being logged in and
- # takem to pub/aminet/ automatically. binary mode will be on.
- # 2. The following commands will be available from within 'ftp':
- #
- # $new displays the RECENT file using 'more'
- # $more str displays the file str
- # $read str displays str.readme
- # $find str downloads and uncompresses SHORT and greps it for str
- # $grep str will grep the already downloaded SHORT for str
-
- # Sample entry for litamiga.epfl.ch. If you duplicate, leave a blank
- # line between entries and add a blank line before enf of file. Duplicate
- # everything below if you're using the macros.
-
- machine litamiga.epfl.ch login ftp password your@name.here
- macdef init
- bin
- cd /pub/aminet
-
- macdef new
- get /pub/aminet/RECENT |more
-
- macdef more
- get $1 |more
-
- macdef read
- get $1.readme |more
-
- macdef find
- get /pub/aminet/SHORT.Z SHORT.Z
- !uncompress SHORT.Z;echo " ";fgrep -i $1 SHORT
-
- macdef grep
- !fgrep -i $i SHORT
-
-